home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00018_OrangeScroll.ls < prev    next >
Encoding:
Text File  |  1999-02-25  |  390 b   |  15 lines

  1. property x
  2.  
  3. on enterFrame me
  4.   if the locH of sprite the spriteNum of me > -20 then
  5.     set the locH of sprite the spriteNum of me to the locH of sprite the spriteNum of me - x
  6.   else
  7.     set the locH of sprite the spriteNum of me to 320
  8.   end if
  9. end
  10.  
  11. on getPropertyDescriptionList
  12.   set p_list to [#x: [#default: 0, #format: #integer, #comment: "Scroll displacement"]]
  13.   return p_list
  14. end
  15.